home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 235_01 / dosfile.h < prev    next >
Text File  |  1987-06-16  |  640b  |  17 lines

  1. /*  001  29-Jun-86  dosfile.h
  2.  
  3.         Header file for use with file.c.
  4.  
  5.         Copyright (c) 1986 by Blue Sky Software.  All rights reserved.
  6. */
  7.  
  8.  
  9. struct search_block {                  /* dos structure for file searching */
  10.    char context[21];                   /* dos context usage */
  11.    unsigned char attrib;               /* file entry attributes */
  12.    unsigned time;                      /* file time */
  13.    unsigned date;                      /* file date */
  14.    unsigned long size;                 /* file size */
  15.    char fn[13];                        /* dos file name */
  16. };
  17.